home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ IE Clear All.xpl < prev    next >
Text File  |  1999-05-28  |  1KB  |  57 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="5"
  3. "COUNT"="2"
  4. "UIPATH"="Internet\Internet Explorer\Other"
  5. "NAME"="Clear Items"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Clear typed URLs"
  8. "TEXT 2"="Clear Radio Links"
  9. "TEXT 3"="C"
  10. "TEXT 4"="D"
  11. "DESCRIPTION 1"="If you do not want that other people can see the items you have saved, click one of the buttons."
  12. "AUTHOR"="Xteq Systems"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
  15. "COMMENT 2"="Version 1.3"
  16. "COMMENT 3"="Thanks to CptSiskoX for the help."
  17.  
  18. sP="HKCU\Software\Microsoft\Internet Explorer\TypedURLs\"
  19.  
  20. sP2a="HKCU\Software\Microsoft\MediaPlayer\Radio\MRUList\"
  21. sP2b="HKCU\Software\Microsoft\MediaPlayer\Radio\MRUList\Radio_Station_Count"
  22.  
  23. Sub Plugin_Initialize 
  24. End Sub
  25.  
  26. Sub Plugin_CheckData(ElementIndex)
  27. End Sub
  28.  
  29. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  30.  if ElementIndex=1 then 
  31.     i=RegEnumValues(sp)
  32.     for l=1 to i
  33.         Call RegDeleteValue(sp & RegEnumElement(l))
  34.     Next
  35.  
  36.     Call MsgInformation("Typed URLs cleared")
  37.  end if
  38.  
  39.  
  40.  if ElementIndex=2 then 
  41.     i=RegEnumValues(sp2a)
  42.     for l=1 to i
  43.         Call RegDeleteValue(sp2a & RegEnumElement(l))
  44.     Next
  45.     Call RegWriteValue(sp2b,0,2)
  46.  
  47.  
  48.     Call MsgInformation("Radio links cleared")
  49.  end if
  50.  
  51.  
  52.  
  53. End Sub
  54.  
  55. Sub Plugin_Terminate 
  56. End Sub
  57.